+2007-05-26 Matthias Clasen <mclasen@redhat.com>
+
+ * gdk/gdk-overrides.txt: Remove GdkBitmap
+ * gtk/gtk-sections.txt:
+ * gtk/gtkenums.sgml:
+ * gdk/rgb.sgml:
+ * gdk/gcs.sgml:
+ * gdk/tmpl/pango_interaction.sgml:
+ * gdk/tmpl/windows.sgml: Additions
+
2007-05-26 Matthias Clasen <mclasen@redhat.com>
* gdk-pixbuf/gdk-pixbuf-sections.txt:
};
</STRUCT>
<STRUCT>
-<NAME>GdkBitmap</NAME>
-struct GdkBitmap
-{
- gpointer user_data;
-};
-</STRUCT>
-<STRUCT>
<NAME>GdkDrawable</NAME>
struct GdkDrawable
{
useful. For bitmaps, %GDK_AND and %GDK_OR are also useful.
</para>
-@GDK_COPY:
-@GDK_INVERT:
-@GDK_XOR:
-@GDK_CLEAR:
-@GDK_AND:
-@GDK_AND_REVERSE:
-@GDK_AND_INVERT:
-@GDK_NOOP:
-@GDK_OR:
-@GDK_EQUIV:
-@GDK_OR_REVERSE:
-@GDK_COPY_INVERT:
-@GDK_OR_INVERT:
-@GDK_NAND:
-@GDK_NOR:
-@GDK_SET:
+@GDK_COPY: <literal>dst = src</literal>
+@GDK_INVERT: <literal>dst = NOT dst</literal>
+@GDK_XOR: <literal>dst = src XOR dst</literal>
+@GDK_CLEAR: <literal>dst = 0</literal>
+@GDK_AND: <literal>dst = dst AND src</literal>
+@GDK_AND_REVERSE: <literal>dst = src AND (NOT dst)</literal>
+@GDK_AND_INVERT: <literal>dst = (NOT src) AND dst</literal>
+@GDK_NOOP: <literal>dst = dst</literal>
+@GDK_OR: <literal>dst = src OR dst</literal>
+@GDK_EQUIV: <literal>dst = (NOT src) XOR dst</literal>
+@GDK_OR_REVERSE: <literal>dst = src OR (NOT dst)</literal>
+@GDK_COPY_INVERT: <literal>dst = NOT src</literal>
+@GDK_OR_INVERT: <literal>dst = (NOT src) OR dst</literal>
+@GDK_NAND: <literal>dst = (NOT src) OR (NOT dst)</literal>
+@GDK_NOR: <literal>dst = (NOT src) AND (NOT dst)</literal>
+@GDK_SET: <literal>dst = 1</literal>
<!-- ##### FUNCTION gdk_gc_new ##### -->
<para>
@attr: the #PangoAttribute.
@embossed: the embossed bitmap.
+<!-- ##### STRUCT GdkPangoAttrEmbossColor ##### -->
+<para>
+A Pango text attribute specifying the color to emboss text with.
+</para>
+
+@attr: the #PangoAttribute
+@color: the color
+
<!-- ##### STRUCT GdkPangoAttrStipple ##### -->
<para>
A Pango text attribute containing a stipple bitmap to be used when
colors. This is used only for gdk_draw_indexed_image().
</para>
-@colors:
-@n_colors:
+@colors: The colors, represented as 0xRRGGBB integer values.
+@n_colors: The number of colors in the cmap.
+
<!-- ##### FUNCTION gdk_rgb_gc_set_foreground ##### -->
<para>
@GDK_WINDOW_TYPE_HINT_NORMAL: Normal toplevel window.
@GDK_WINDOW_TYPE_HINT_DIALOG: Dialog window.
-@GDK_WINDOW_TYPE_HINT_MENU: Window used to implement a menu.
+@GDK_WINDOW_TYPE_HINT_MENU: Window used to implement a menu; GTK+ uses
+ this hint only for torn-off menus, see #GtkTearoffMenuItem.
@GDK_WINDOW_TYPE_HINT_TOOLBAR: Window used to implement toolbars.
@GDK_WINDOW_TYPE_HINT_SPLASHSCREEN: Window used to display a splash
screen during application startup.
@GDK_WINDOW_TYPE_HINT_DOCK: Used for creating dock or panel windows.
@GDK_WINDOW_TYPE_HINT_DESKTOP: Used for creating the desktop background
window.
-@GDK_WINDOW_TYPE_HINT_DROPDOWN_MENU:
-@GDK_WINDOW_TYPE_HINT_POPUP_MENU:
-@GDK_WINDOW_TYPE_HINT_TOOLTIP:
-@GDK_WINDOW_TYPE_HINT_NOTIFICATION:
-@GDK_WINDOW_TYPE_HINT_COMBO:
-@GDK_WINDOW_TYPE_HINT_DND:
+@GDK_WINDOW_TYPE_HINT_DROPDOWN_MENU: A menu that belongs to a menubar.
+@GDK_WINDOW_TYPE_HINT_POPUP_MENU: A menu that does not belong to a menubar,
+ e.g. a context menu.
+@GDK_WINDOW_TYPE_HINT_TOOLTIP: A tooltip.
+@GDK_WINDOW_TYPE_HINT_NOTIFICATION: A notification - typically a "bubble"
+ that belongs to a status icon.
+@GDK_WINDOW_TYPE_HINT_COMBO: A popup from a combo box.
+@GDK_WINDOW_TYPE_HINT_DND: A window that is used to implement a DND cursor.
<!-- ##### STRUCT GdkWindowAttr ##### -->
<para>
@setting:
+<!-- ##### FUNCTION gdk_window_set_opacity ##### -->
+<para>
+
+</para>
+
+@window:
+@opacity:
+
+
<!-- ##### FUNCTION gdk_window_move ##### -->
<para>
GtkWindowPosition
GtkWindowType
GtkSortType
+GtkDragResult
<SUBSECTION Private>
GtkMenuCallback
@GTK_SORT_ASCENDING: Sorting is in ascending order.
@GTK_SORT_DESCENDING: Sorting is in descending order.
+<!-- ##### ENUM GtkDragResult ##### -->
+<para>
+Gives an indication why a drag operation failed.
+The value can by obtained by connecting to the
+#GtkWidget::drag-failed signal.
+</para>
+
+@GTK_DRAG_RESULT_SUCCESS: The drag operation was successful
+@GTK_DRAG_RESULT_NO_TARGET: No suitable drag target
+@GTK_DRAG_RESULT_USER_CANCELLED: The user cancelled the drag operation
+@GTK_DRAG_RESULT_TIMEOUT_EXPIRED: The drag operation timed out
+@GTK_DRAG_RESULT_GRAB_BROKEN: The pointer or keyboard grab used
+ for the drag operation was broken
+@GTK_DRAG_RESULT_ERROR: The drag operation failed due to some
+ unspecified error
+